File ubridge.spec of Package failed_ubridge

```
Name:           ubridge
Version:        0.9.19
Release:        1.1
Summary:        A user-space network bridge for Linux
License:        GPL-2.0-or-later
Group:          System/Networking
URL:            https://example.com/ubridge
Source0:        ubridge-0.9.19.tar.gz

BuildRequires:  gcc
BuildRequires:  make
BuildRequires:  libiniparser-devel

%description
A user-space network bridge for Linux that allows creating virtual network interfaces and bridging them.

%prep
%setup -q

%build
export CFLAGS="%{optflags}"
export CXXFLAGS="%{optflags}"
make V=1 SYSTEM_INIPARSER=1

%install
make install DESTDIR=%{buildroot}

%files
%doc README.md
%{_bindir}/ubridge
```

### Explanation of Changes:
1. **Added `BuildRequires: libiniparser-devel`:**
   - This ensures that the development headers and libraries for `iniparser` are available during the build process.
   - Without this, the compiler cannot find `iniparser.h`, leading to the error observed in the build log.

2. **No changes to other parts of the file:**
   - The rest of the file remains unchanged as it already correctly defines the build and installation steps.

This modification should resolve the build failure by ensuring that the required header files are present during compilation.
openSUSE Build Service is sponsored by