Changeset 1c96ee2 in freewrt
- Timestamp:
- Jan 10, 2007, 3:26:57 AM (19 years ago)
- Children:
- 72cf3a0
- Parents:
- 0088205
- File:
-
- 1 edited
-
package/vncrepeater/patches/patch-Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
package/vncrepeater/patches/patch-Makefile
r0088205 r1c96ee2 1 1 $FreeWRT$ 2 change C C, CFLAGS and LDFLAGS to be tunable via environment variables2 change CXX, CFLAGS and LDFLAGS to be tunable via environment variables 3 3 --- vncrepeater-0.12.orig/Makefile 2006-03-31 09:40:14.000000000 +0200 4 4 +++ vncrepeater-0.12/Makefile 2007-01-10 02:29:00.000000000 +0100 … … 8 8 repeater: repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o 9 9 - g++ $(CFLAGS) -o repeater repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o 10 + $(C C) $(CFLAGS) $(LDFLAGS) -o repeater repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o -nodefaultlibs10 + $(CXX) $(CFLAGS) $(LDFLAGS) -o repeater repeater.o repeaterproc.o openbsd_stringfuncs.o iniparser.o readini.o -nodefaultlibs 11 11 12 12 repeater.o: repeater.cpp 13 13 - g++ $(CFLAGS) -c repeater.cpp 14 + $(C C) $(CFLAGS) -c repeater.cpp14 + $(CXX) $(CFLAGS) -c repeater.cpp 15 15 16 16 repeaterproc.o: repeaterproc.cpp 17 17 - g++ $(CFLAGS) -c repeaterproc.cpp 18 + $(C C) $(CFLAGS) -c repeaterproc.cpp18 + $(CXX) $(CFLAGS) -c repeaterproc.cpp 19 19 20 20 openbsd_stringfuncs.o: openbsd_stringfuncs.cpp 21 21 - g++ $(CFLAGS) -c openbsd_stringfuncs.cpp 22 + $(C C) $(CFLAGS) -c openbsd_stringfuncs.cpp22 + $(CXX) $(CFLAGS) -c openbsd_stringfuncs.cpp 23 23 24 24 iniparser.o: iniparser.cpp 25 25 - g++ $(CFLAGS) -c iniparser.cpp 26 + $(C C) $(CFLAGS) -c iniparser.cpp26 + $(CXX) $(CFLAGS) -c iniparser.cpp 27 27 28 28 readini.o: readini.cpp 29 29 - g++ $(CFLAGS) -c readini.cpp 30 + $(C C) $(CFLAGS) -c readini.cpp30 + $(CXX) $(CFLAGS) -c readini.cpp 31 31 32 32 clean:
Note:
See TracChangeset
for help on using the changeset viewer.
