aboutsummaryrefslogtreecommitdiffstats
path: root/res/Makefile
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-05 18:37:29 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-05 18:37:29 +0000
commit5be1f729d8442f79005d7a81e4f3a99e276db2c2 (patch)
tree4dce8fe22761a869979032d56156a7b7688d25a9 /res/Makefile
parent6816f315c532aa5b093d72d00c599a758f29860a (diff)
Unbreak res/Makefile (issue #6891 as reported by casper)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@17661 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/Makefile')
-rw-r--r--res/Makefile16
1 files changed, 3 insertions, 13 deletions
diff --git a/res/Makefile b/res/Makefile
index d842275d5..83a68d165 100644
--- a/res/Makefile
+++ b/res/Makefile
@@ -43,7 +43,6 @@ else
endif
endif
-
ifeq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/postgresql $(CROSS_COMPILE_TARGET)/usr/local/pgsql/include $(CROSS_COMPILE_TARGET)/usr/include/pgsql $(CROSS_COMPILE_TARGET)/usr/local/include/pgsql $(CROSS_COMPILE_TARGET)/opt/pgsql/include $(CROSS_COMPILE_TARGET)/usr/include/libpq-fe.h),)
MODS:=$(filter-out res_config_pgsql.so,$(MODS))
endif
@@ -54,16 +53,12 @@ else
SNMP_LDLIBS+=$(shell net-snmp-config --agent-libs)
endif
-ifeq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/net-snmp/net-snmp-config.h),)
- MODS:=$(filter-out res_snmp.so,$(MODS))
-else
- SNMP_LDLIBS+=$(shell net-snmp-config --agent-libs)
-endif
-
ifeq (${WITH_SMDI},)
MODS:=$(filter-out res_smdi.so,$(MODS))
endif
+MLFLAGS=
+
# Now, go find postgresql libraries
ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/postgresql),)
CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/include/postgresql
@@ -87,7 +82,7 @@ endif
ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/opt/pgsql/include),)
CFLAGS+=-I$(CROSS_COMPILE_TARGET)/opt/pgsql/include
- MLFLAGS+=-L$(CROSS_COMPILE_TARGET) /opt/pgsql/lib
+ MLFLAGS+=-L$(CROSS_COMPILE_TARGET)/opt/pgsql/lib
endif
ifneq ($(wilcard $(CROSS_COMPILE_TARGET)/usr/include/postgresql),)
@@ -98,7 +93,6 @@ ifneq ($(wilcard $(CROSS_COMPILE_TARGET)/usr/lib/libpq.so),)
MLFLAGS+=-L$(CROSS_COMPILE_TARGET)/usr/lib
endif
-
ifeq (${OSARCH},CYGWIN)
CYGSOLINK=-Wl,--out-implib=lib$@.a -Wl,--export-all-symbols
CYGSOLIB=-L.. -L. -lasterisk.dll
@@ -111,8 +105,6 @@ CRYPTO_LIBS=-lssl -lcrypto
CFLAGS+=
-MLFLAGS=
-
ifndef WITHOUT_ZAPTEL
ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/linux/zaptel.h)$(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/zaptel.h),)
CFLAGS+=-DZAPATA_MOH
@@ -179,8 +171,6 @@ res_snmp.so: res_snmp.o snmp/agent.o
res_config_pgsql.so: res_config_pgsql.o
$(CC) $(SOLINK) -o $@ ${CYGSOLINK} $< ${CYGSOLIB} -lpq -lz $(MLFLAGS)
-
-
ifneq ($(wildcard .depend),)
include .depend
endif