Skip to content

Commit 96f2606

Browse files
committed
Disable generation of usrsctp.pc for pkg_config.
Right now this would add a dependency to pkg-config, which is not indended.
1 parent 8679f2b commit 96f2606

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
SUBDIRS = usrsctplib programs
3232
EXTRA_DIST = bootstrap Makefile.nmake
3333
ACLOCAL_AMFLAGS = -I m4
34-
pkgconfig_DATA = usrsctp.pc
34+
# pkgconfig_DATA = usrsctp.pc

configure.ac

+4-3
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ AC_PROG_LIBTOOL
3636
AC_CANONICAL_HOST
3737
AC_CONFIG_MACRO_DIR([m4])
3838

39-
PKG_PROG_PKG_CONFIG
40-
PKG_INSTALLDIR
39+
dnl Disable pkg_config support for now
40+
dnl PKG_PROG_PKG_CONFIG
41+
dnl PKG_INSTALLDIR
4142

4243
LIBCFLAGS="-DSCTP_PROCESS_LEVEL_LOCKS -DSCTP_SIMPLE_ALLOCATOR -D__Userspace__"
4344
APPCFLAGS=""
@@ -181,5 +182,5 @@ AC_C_BIGENDIAN
181182

182183
AC_SUBST([LIBCFLAGS])
183184
AC_SUBST([APPCFLAGS])
184-
AC_CONFIG_FILES([usrsctp.pc])
185+
dnl AC_CONFIG_FILES([usrsctp.pc])
185186
AC_OUTPUT(Makefile usrsctplib/Makefile programs/Makefile)

0 commit comments

Comments
 (0)