annotate Makefile.solaris @ 490:9141f13be70c dev-1_0_3

Don't set conn->err if we are handling EINTR and it isn't supposed to get to higher level. Fixes NNChat quitting unexpectedly when resizing a terminal window causes EINTR for select() in the network polling.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 27 May 2012 09:23:12 +0300
parents b1482bc34260
children 23d16d9cdf96
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
204
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 #
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 # Configuration settings for typical Solaris 9+
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 #
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 CC=gcc
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 CFLAGS=-DHAVE_STRING_H -DHAVE_INT_TYPES -DHAVE_UINT_T
205
b1482bc34260 Link to libncurses instead of system curses.
Matti Hamalainen <ccr@tnsp.org>
parents: 204
diff changeset
6 LDFLAGS=-lncurses -lresolv
204
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 # Miscellaneous
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 BINPATH=
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 OBJPATH=
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 EXEEXT=
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12
937db3c2465f Added Makefile for Solaris 9+ and removed references to it from main Makefile.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 include Makefile.gen