getopt: avoid compiler warning during configure
authorEric Blake <eblake@redhat.com>
Thu, 7 Jul 2011 17:02:23 +0000 (11:02 -0600)
committerEric Blake <eblake@redhat.com>
Thu, 7 Jul 2011 17:02:23 +0000 (11:02 -0600)
commit3615b190ca4b0f20ec469d0bcdb1070e241aa96c
tree70048a3e64d505e24a9bd7f41923f4fac5fe0ec2
parent366d08c003506c7ed3c040289f191e1f5b3eb4af
getopt: avoid compiler warning during configure

Some compilers (or warning settings within a compiler) rightfully
complain about assigning a string literal to a char *, since this
can lead to undefined behavior if those characters are modified.
Use the same casts as in the test file to avoid a spurious rejection
of a system getopt merely because of warnings.

* m4/getopt.m4 (gl_GETOPT_CHECK_HEADRS): Avoid problems with
assigning string literals to non-const pointer.

Signed-off-by: Eric Blake <eblake@redhat.com>
ChangeLog
m4/getopt.m4