Compare commits

..

No commits in common. "master" and "master" have entirely different histories.

5 changed files with 7 additions and 7 deletions

2
.gitignore vendored
View File

@ -31,4 +31,4 @@ Doxyfile
.*.swp .*.swp
doc/ doc/
contrib/libosmodsp.spec contrib/libosmocore.spec

View File

@ -14,8 +14,7 @@ dist-hook:
EXTRA_DIST = \ EXTRA_DIST = \
.version \ .version \
README.md \ contrib/libosmo-dsp.spec.in \
contrib/libosmodsp.spec.in \
debian \ debian \
git-version-gen \ git-version-gen \
$(NULL) $(NULL)

View File

@ -81,7 +81,7 @@ AC_CONFIG_HEADER(config.h)
AC_OUTPUT( AC_OUTPUT(
libosmodsp.pc libosmodsp.pc
contrib/libosmodsp.spec contrib/libosmo-dsp.spec
include/Makefile include/Makefile
include/osmocom/Makefile include/osmocom/Makefile
include/osmocom/dsp/Makefile include/osmocom/dsp/Makefile

View File

@ -6,7 +6,7 @@
# This file is under MIT license # This file is under MIT license
%define libname libosmodsp0 %define libname libosmodsp0
Name: libosmodsp Name: libosmo-dsp
Version: @VERSION@ Version: @VERSION@
Release: 0 Release: 0
Summary: SDR DSP primitives Summary: SDR DSP primitives
@ -14,6 +14,7 @@ License: GPL-2.0-only
Group: Productivity/Hamradio/Other Group: Productivity/Hamradio/Other
URL: https://osmocom.org/projects/libosmo-dsp URL: https://osmocom.org/projects/libosmo-dsp
Source: %{name}-%{version}.tar.xz Source: %{name}-%{version}.tar.xz
Patch0: HTML_TIMESTAMP.diff
BuildRequires: automake >= 1.6 BuildRequires: automake >= 1.6
BuildRequires: doxygen BuildRequires: doxygen
BuildRequires: fdupes BuildRequires: fdupes
@ -51,6 +52,7 @@ A library with SDR DSP primitives headers - Documentation
%prep %prep
%setup -q %setup -q
%patch0 -p1
%build %build
echo "%version" >.tarball-version echo "%version" >.tarball-version

View File

@ -8,5 +8,4 @@ AM_CFLAGS = -Wall -ffast-math $(FFTW3F_CFLAGS)
lib_LTLIBRARIES = libosmodsp.la lib_LTLIBRARIES = libosmodsp.la
libosmodsp_la_SOURCES = cfile.c cxvec.c cxvec_math.c iqbal.c libosmodsp_la_SOURCES = cfile.c cxvec.c cxvec_math.c iqbal.c
libosmodsp_la_LDFLAGS = -version-info $(LIBVERSION) libosmodsp_la_LDFLAGS = -version-info $(LIBVERSION) $(FFTW3F_LIBS)
libosmodsp_la_LIBADD = $(FFTW3F_LIBS)