1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Remove detected -lcrypt flag

This commit is contained in:
Chase 2022-08-03 18:07:57 -05:00 committed by Jon Trulson
parent 47cc5d4a72
commit b38c2b02a8
5 changed files with 3 additions and 21 deletions

View file

@ -16,7 +16,7 @@ libDtHelp_la_CFLAGS = -I./il -I./jpeg -I../DtSvc/DtUtil2 -DDTLIB \
libDtHelp_la_LIBADD = $(JPEGLIB) il/libil.la $(LTLIBICONV)
if SOLARIS
libDtHelp_la_LIBADD += -lw -lgen -lc
libDtHelp_la_LIBADD += -lw -lgen
endif

View file

@ -21,10 +21,6 @@ endif
libDtSearch_la_LIBADD = raima/libraima.la
if SOLARIS
libDtSearch_la_LIBADD += -lc
endif
libDtSearch_la_SOURCES = apndext.c ausdopen.c ausexit.c \
bmstrstr.c boolpars.c boolsrch.c \
boolyac.y cuslang.c dbchange.c \
@ -39,5 +35,3 @@ libDtSearch_la_SOURCES = apndext.c ausdopen.c ausexit.c \
ocf.c opendblk.c ophuf.c \
readchar.c strupr.c userint.c \
vedelete.c vestatis.c vstfunct.c

View file

@ -17,7 +17,7 @@ endif
if SOLARIS
libDtWidget_la_CFLAGS += -DNO_REGCOMP
libDtWidget_la_LIBADD = -lc -lw -lintl
libDtWidget_la_LIBADD = -lw -lintl
endif

View file

@ -18,7 +18,7 @@ libtt_la_LIBADD = api/c/libapi.la api/dnd/libdnd.la db/libdb.la mp/libmp.la \
if SOLARIS
# This stuff should be figured out by configure
libtt_la_LIBADD += -lnsl -lsocket -lintl -lc -lw
libtt_la_LIBADD += -lnsl -lsocket -lintl -lw
endif
if LINUX

View file

@ -5,15 +5,3 @@ bin_PROGRAMS = dtaction
dtaction_SOURCES = Main.c
dtaction_LDADD = $(DTCLIENTLIBS) $(XTOOLLIB)
if LINUX
dtaction_LDADD += -lcrypt
endif
if FREEBSD
dtaction_LDADD += -lcrypt
endif
if NETBSD
dtaction_LDADD += -lcrypt
endif