[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Patch for HPUX11



Hi,
I read in the new growisofs history that HP-UX 11 support donated by Hewlett-Packard Company.
HP-UX support is classified as "initial," feedback is expected.

I tried to compile dvd+rw-tools-5.14.4.7.4 on my hpux 11.00 workstation,
but it fails with the following error message:

dvd+rw-tools-5.14.4.7.4 # gmake
gmake[1]: Entering directory `/users/mgansser/GNU/dvd+rw-tools-5.14.4.7.4'
gcc  -O2 -c  -o growisofs.o growisofs.c
g++  -O2 -fno-exceptions -c  growisofs_mmc.o growisofs_mmc.cpp
g++: growisofs_mmc.o: No such file or directory
gmake[1]: *** [growisofs_mmc.o] Error 1


this is a patch for Makefile.m4


--- Makefile.m4.orig    2003-12-09 14:33:48.000000000 +0100
+++ Makefile.m4 2003-12-09 14:30:06.000000000 +0100
@@ -93,7 +93,7 @@
 .c.o:
        $(CC) $(CFLAGS) -c  -o $@ $<
 .cpp.o:
-       $(CXX) $(CXXFLAGS) -c $@ $<
+       $(CXX) $(CXXFLAGS) -c -o $@ $<
 .o:    # try to please both BSD vv&vv GNU make at the same time...
        $(CXX) $(CXXFLAGS) -o $@ $> $^ $(LDFLAGS) $(LDLIBS)


please commit this
and thanks to Greg Wooledge

Martin



Reply to: