< prev index next >

make/java/net/Makefile

Print this page
rev 1564 : 7090158: Networking Libraries don't build with javac -Werror
7125055: ContentHandler.getContent API changed in error
Summary: Minor changes to networking java files to remove warnings
Reviewed-by: chegar, weijun, hawtin, alanb
Contributed-by: kurchi.subhra.hazra@oracle.com, sasha_bu@hotmail.com


  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 # This file has been modified by Azul Systems, Inc. in 2014. These
  28 # modifications are Copyright (c) 2014 Azul Systems, Inc., and are made
  29 # available on the same license terms set forth above. 
  30 #
  31 
  32 BUILDDIR = ../..
  33 PACKAGE = java.net
  34 LIBRARY = net
  35 PRODUCT = sun


  36 include $(BUILDDIR)/common/Defs.gmk
  37 
  38 #
  39 # Files
  40 #
  41 include FILES_c.gmk
  42 
  43 AUTO_FILES_JAVA_DIRS = java/net
  44 
  45 ifeq ($(PLATFORM), windows)
  46     FILES_c += NTLMAuthSequence.c
  47     FILES_c += NetworkInterface_winXP.c
  48 endif
  49 
  50 FILES_export = \
  51     java/net/Socket.java \
  52     java/net/SocketOptions.java \
  53     java/net/SocketImpl.java \
  54     java/net/AbstractPlainSocketImpl.java \
  55     java/net/PlainSocketImpl.java \




  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 # This file has been modified by Azul Systems, Inc. in 2014. These
  28 # modifications are Copyright (c) 2014 Azul Systems, Inc., and are made
  29 # available on the same license terms set forth above. 
  30 #
  31 
  32 BUILDDIR = ../..
  33 PACKAGE = java.net
  34 LIBRARY = net
  35 PRODUCT = sun
  36 JAVAC_MAX_WARNINGS = true
  37 JAVAC_LINT_OPTIONS = -Xlint:all,-deprecation
  38 include $(BUILDDIR)/common/Defs.gmk
  39 
  40 #
  41 # Files
  42 #
  43 include FILES_c.gmk
  44 
  45 AUTO_FILES_JAVA_DIRS = java/net
  46 
  47 ifeq ($(PLATFORM), windows)
  48     FILES_c += NTLMAuthSequence.c
  49     FILES_c += NetworkInterface_winXP.c
  50 endif
  51 
  52 FILES_export = \
  53     java/net/Socket.java \
  54     java/net/SocketOptions.java \
  55     java/net/SocketImpl.java \
  56     java/net/AbstractPlainSocketImpl.java \
  57     java/net/PlainSocketImpl.java \


< prev index next >