CVSROOT:        /cvsroot/hurdextras
Module name:    run
Changes by:     Samuel Thibault <sthibaul>      13/02/10 11:12:28

Modified files:
        .              : ChangeLog Makefile 

Log message:
        2013-02-10  Samuel Thibault  <[email protected]>
        
                * Makefile (CFLAGS): Use -std=gnu99 instead of -std=c99.
                (LDFLAGS): Add -lports.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/run/ChangeLog?cvsroot=hurdextras&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/run/Makefile?cvsroot=hurdextras&r1=1.1&r2=1.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/hurdextras/run/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- ChangeLog   12 Apr 2006 22:28:51 -0000      1.1
+++ ChangeLog   10 Feb 2013 11:12:28 -0000      1.2
@@ -1,3 +1,8 @@
+2013-02-10  Samuel Thibault  <[email protected]>
+
+       * Makefile (CFLAGS): Use -std=gnu99 instead of -std=c99.
+       (LDFLAGS): Add -lports.
+
 2006-04-12  Manuel Menal  <[email protected]>
 
        * run.c (trivfs_S_io_read): Change vm_address_t to data_t.

Index: Makefile
===================================================================
RCS file: /cvsroot/hurdextras/run/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- Makefile    12 Apr 2006 22:28:51 -0000      1.1
+++ Makefile    10 Feb 2013 11:12:28 -0000      1.2
@@ -1,6 +1,6 @@
 CC = gcc
-CFLAGS = -Wall -O2 -std=c99 -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
-LDFLAGS = -ltrivfs -lfshelp
+CFLAGS = -Wall -O2 -std=gnu99 -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
+LDFLAGS = -ltrivfs -lfshelp -lports
 BINARY = run
 
 all: $(BINARY)

_______________________________________________
Hurdextras-commit mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/hurdextras-commit

Reply via email to