summary refs log tree commit diff
path: root/pkgs/os-specific/linux/util-linux/MCONFIG.patch
blob: 2a7816db8501b89389bce662a1eb15402ef44f8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
diff -rc util-linux-2.12q-orig/MCONFIG util-linux-2.12q/MCONFIG
*** util-linux-2.12q-orig/MCONFIG	2004-12-13 00:15:48.000000000 +0100
--- util-linux-2.12q/MCONFIG	2005-03-10 16:28:53.000000000 +0100
***************
*** 64,75 ****
  # If HAVE_WRITE is set to "yes", then write will not be built or
  # installed from the misc-utils subdirectory.
  # (There is a network aware write in netwrite from NetKit 0.16 or later.)
! HAVE_WRITE=no
  
  # If HAVE_GETTY is set to "yes", then agetty will not be built or
  # installed from the login-utils subdirectory.  Note that agetty can
  # co-exist with other gettys, so this option should never be used.
! HAVE_GETTY=no
  
  # If USE_TTY_GROUP is set to "yes", then wall and write will be installed
  # setgid to the "tty" group, and mesg will only set the group write bit.
--- 64,75 ----
  # If HAVE_WRITE is set to "yes", then write will not be built or
  # installed from the misc-utils subdirectory.
  # (There is a network aware write in netwrite from NetKit 0.16 or later.)
! HAVE_WRITE=yes
  
  # If HAVE_GETTY is set to "yes", then agetty will not be built or
  # installed from the login-utils subdirectory.  Note that agetty can
  # co-exist with other gettys, so this option should never be used.
! HAVE_GETTY=yes
  
  # If USE_TTY_GROUP is set to "yes", then wall and write will be installed
  # setgid to the "tty" group, and mesg will only set the group write bit.
***************
*** 77,83 ****
  # user's tty to "tty" [The login in util-linux does this correctly, and
  # xterm will do it correctly if X is compiled with USE_TTY_GROUP set
  # properly.]
! USE_TTY_GROUP=yes
  
  # If HAVE_KILL is set to "yes", then kill will not be built or
  # installed from the misc-utils subdirectory.
--- 77,83 ----
  # user's tty to "tty" [The login in util-linux does this correctly, and
  # xterm will do it correctly if X is compiled with USE_TTY_GROUP set
  # properly.]
! USE_TTY_GROUP=no
  
  # If HAVE_KILL is set to "yes", then kill will not be built or
  # installed from the misc-utils subdirectory.
***************
*** 102,111 ****
  # If HAVE_SLN is set to "yes", then sln won't be installed
  # (but the man page sln.8 will be installed anyway).
  # sln also comes with libc and glibc.
! HAVE_SLN=no
  
  # If HAVE_FDUTILS is set to "yes", then setfdprm won't be installed.
! HAVE_FDUTILS=no
  
  # If SILENT_PG is set to "yes", then pg will not ring the bell
  # when an invalid key is pressed
--- 102,111 ----
  # If HAVE_SLN is set to "yes", then sln won't be installed
  # (but the man page sln.8 will be installed anyway).
  # sln also comes with libc and glibc.
! HAVE_SLN=yes
  
  # If HAVE_FDUTILS is set to "yes", then setfdprm won't be installed.
! HAVE_FDUTILS=yes
  
  # If SILENT_PG is set to "yes", then pg will not ring the bell
  # when an invalid key is pressed
***************
*** 168,184 ****
  DEV_DIR=	/dev
  ETC_DIR=	/etc
  SBIN_DIR=	/sbin
! USRSBIN_DIR=	/usr/sbin
! USRLIB_DIR=	/usr/lib
! USRBIN_DIR=	/usr/bin
! USRGAMES_DIR=	/usr/games
! USRSHAREMISC_DIR=/usr/share/misc
! LOCALE_DIR=	/usr/share/locale
  BIN_DIR=        /bin
  VAR_PATH=	/var
  LOG_DIR=	/var/log
! MAN_DIR=	/usr/share/man
! INFO_DIR=	/usr/share/info
  
  #
  # Paths used for install
--- 168,184 ----
  DEV_DIR=	/dev
  ETC_DIR=	/etc
  SBIN_DIR=	/sbin
! USRSBIN_DIR=	/sbin
! USRLIB_DIR=	/lib
! USRBIN_DIR=	/bin
! USRGAMES_DIR=	/games
! USRSHAREMISC_DIR=/share/misc
! LOCALE_DIR=	/share/locale
  BIN_DIR=        /bin
  VAR_PATH=	/var
  LOG_DIR=	/var/log
! MAN_DIR=	/share/man
! INFO_DIR=	/share/info
  
  #
  # Paths used for install
***************
*** 212,218 ****
  MANMODE=	644
  DATMODE=	644
  INFOMODE=	644
! SUIDMODE=      4755
  
  CHMOD=		chmod
  INSTALL=	install
--- 212,218 ----
  MANMODE=	644
  DATMODE=	644
  INFOMODE=	644
! SUIDMODE=       755
  
  CHMOD=		chmod
  INSTALL=	install
***************
*** 220,226 ****
  INSTALLBIN=	$(INSTALL) -m $(BINMODE)
  INSTALLMAN=	$(INSTALL) -m $(MANMODE)
  INSTALLDAT=	$(INSTALL) -m $(DATMODE)
! INSTALLSUID=    $(INSTALL) -m $(SUIDMODE) -o root
  
  ifeq "$(DISABLE_NLS)" "yes"
  NLSFLAGS = -DDISABLE_NLS
--- 220,226 ----
  INSTALLBIN=	$(INSTALL) -m $(BINMODE)
  INSTALLMAN=	$(INSTALL) -m $(MANMODE)
  INSTALLDAT=	$(INSTALL) -m $(DATMODE)
! INSTALLSUID=    $(INSTALL) -m $(SUIDMODE) # -o root
  
  ifeq "$(DISABLE_NLS)" "yes"
  NLSFLAGS = -DDISABLE_NLS